home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / reiser4 / plugin.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  52KB  |  1,857 lines

  1. /* Copyright (C) 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    plugin.h -- reiser4 plugin known types and macros. */
  5.  
  6. #ifndef REISER4_PLUGIN_H
  7. #define REISER4_PLUGIN_H
  8.  
  9. #include <aal/libaal.h>
  10.  
  11. /* Leaf and twig levels. */
  12. #define LEAF_LEVEL            1
  13. #define TWIG_LEVEL            (LEAF_LEVEL + 1)
  14.  
  15. /* Master related stuff like magic and offset in bytes. These are used by both
  16.    plugins and library itself. */
  17. #define REISER4_MASTER_MAGIC        ("ReIsEr4")
  18. #define REISER4_MASTER_OFFSET        (65536)
  19. #define REISER4_MASTER_BLOCKNR(blksize)    (REISER4_MASTER_OFFSET/blksize)
  20.  
  21. /* The same for fs stat block. */
  22. #define REISER4_STATUS_BLOCKNR(blksize)    (REISER4_MASTER_BLOCKNR(blksize) + 5)
  23. #define REISER4_STATUS_MAGIC        ("ReiSeR4StATusBl")
  24.  
  25. /* Where the backup starts. */
  26. #define REISER4_BACKUP_START(blksize)    (REISER4_MASTER_BLOCKNR(blksize) + 6)
  27.  
  28. /* Root key locality and objectid. This is actually defined in oid plugin,
  29.    but hardcoded here to exclude oid plugin from the minimal mode at all,
  30.    nothing but these oids is needed there. */
  31. #define REISER4_ROOT_LOCALITY        (0x29)
  32. #define REISER4_ROOT_OBJECTID        (0x2a)
  33.  
  34. /* Macros for hole and unallocated extents. Used by both plugins (extent40) and
  35.    library itself. */
  36. #define EXTENT_HOLE_UNIT        (0)
  37. #define EXTENT_UNALLOC_UNIT        (1)
  38.  
  39. /* Defining the types for disk structures. All types like f32_t are fake ones
  40.    and needed to avoid gcc-2.95.x bug with size of typedefined aligned types. */
  41. typedef uint8_t  f8_t;  typedef f8_t  d8_t  __attribute__((aligned(1)));
  42. typedef uint16_t f16_t; typedef f16_t d16_t __attribute__((aligned(2)));
  43. typedef uint32_t f32_t; typedef f32_t d32_t __attribute__((aligned(4)));
  44. typedef uint64_t f64_t; typedef f64_t d64_t __attribute__((aligned(8)));
  45.  
  46. /* Basic reiser4 types used by both library and plugins. */
  47. typedef uint32_t rid_t;
  48. typedef uint64_t oid_t;
  49.  
  50. /* Type for position in node (item and unit component). */
  51. struct pos {
  52.     uint32_t item;
  53.     uint32_t unit;
  54. };
  55.  
  56. typedef struct pos pos_t;
  57.  
  58. #define POS_INIT(p, i, u) \
  59.         (p)->item = i, (p)->unit = u
  60.  
  61. /* Lookup return values. */
  62. enum lookup {
  63.     PRESENT                 = 1,
  64.     ABSENT                  = 0,
  65. };
  66.  
  67. typedef int64_t lookup_t;
  68.  
  69. /* Known by library plugin types. */
  70. enum reiser4_plug_type {
  71.     OBJECT_PLUG_TYPE        = 0x0,
  72.     ITEM_PLUG_TYPE          = 0x1,
  73.     NODE_PLUG_TYPE          = 0x2,
  74.     HASH_PLUG_TYPE          = 0x3,
  75.     FIBRE_PLUG_TYPE        = 0x4,
  76.     POLICY_PLUG_TYPE        = 0x5,
  77.     PERM_PLUG_TYPE          = 0x6,
  78.     SDEXT_PLUG_TYPE         = 0x7,
  79.     FORMAT_PLUG_TYPE        = 0x8,
  80.     OID_PLUG_TYPE           = 0x9,
  81.     JNODE_PLUG_TYPE         = 0xa,
  82.     CRYPTO_PLUG_TYPE    = 0xb,
  83.     DIGEST_PLUG_TYPE    = 0xc,
  84.     COMPRESS_PLUG_TYPE    = 0xd,
  85.     
  86.     /* These are not plugins in the kernel. */
  87.     ALLOC_PLUG_TYPE         = 0xe,
  88.     JOURNAL_PLUG_TYPE       = 0xf,
  89.     KEY_PLUG_TYPE           = 0x10,
  90.     PARAM_PLUG_TYPE        = 0x11,
  91.     LAST_PLUG_TYPE
  92. };
  93.  
  94. typedef enum reiser4_plug_type reiser4_plug_type_t;
  95.  
  96. /* Known object plugin ids. */
  97. enum reiser4_object_plug_id {
  98.     OBJECT_REG40_ID         = 0x0,
  99.     OBJECT_DIR40_ID        = 0x1,
  100.     OBJECT_SYM40_ID        = 0x2,
  101.     OBJECT_SPL40_ID            = 0x3,
  102.     OBJECT_LAST_ID
  103. };
  104.  
  105. /* Known object groups. */
  106. enum reiser4_object_group {
  107.     REG_OBJECT        = 0x0,
  108.     DIR_OBJECT        = 0x1,
  109.     SYM_OBJECT        = 0x2,
  110.     SPL_OBJECT        = 0x3,
  111.     LAST_OBJECT
  112. };
  113.  
  114. typedef enum reiser4_object_group reiser4_object_group_t;
  115.  
  116. /* Known item plugin ids. */
  117. enum reiser4_item_plug_id {
  118.     ITEM_STAT40_ID        = 0x0,
  119.     ITEM_SDE40_ID            = 0x1,
  120.     ITEM_CDE40_ID            = 0x2,
  121.     ITEM_NODEPTR40_ID    = 0x3,
  122.     ITEM_ACL40_ID        = 0x4,
  123.     ITEM_EXTENT40_ID    = 0x5,
  124.     ITEM_PLAIN40_ID        = 0x6,
  125.     ITEM_CTAIL40_ID        = 0x7,
  126.     ITEM_BLACKBOX40_ID    = 0x8,
  127.     ITEM_LAST_ID
  128. };
  129.  
  130. /* Known item groups. */
  131. enum reiser4_item_group {
  132.     STAT_ITEM        = 0x0,
  133.     PTR_ITEM        = 0x1,
  134.     DIR_ITEM        = 0x2,
  135.     TAIL_ITEM        = 0x3,
  136.     EXTENT_ITEM        = 0x4,
  137.     PERMISSION_ITEM        = 0x5, /* not used yet */
  138.     SAFE_LINK_ITEM        = 0x6,
  139.     CTAIL_ITEM        = 0x7,
  140.     BLACK_BOX_ITEM        = 0x8,
  141.     LAST_ITEM
  142. };
  143.  
  144. typedef enum reiser4_item_group reiser4_item_group_t;
  145.  
  146. extern const char *reiser4_igname[];
  147. extern const char *reiser4_slink_name[];
  148.  
  149. /* Known node plugin ids. */
  150. enum reiser4_node_plug_id {
  151.     NODE_REISER40_ID        = 0x0,
  152.     NODE_LAST_ID
  153. };
  154.  
  155. /* Known hash plugin ids. */
  156. enum reiser4_hash_plug_id {
  157.     HASH_RUPASOV_ID        = 0x0,
  158.     HASH_R5_ID        = 0x1,
  159.     HASH_TEA_ID        = 0x2,
  160.     HASH_FNV1_ID        = 0x3,
  161.     HASH_DEG_ID             = 0x4,
  162.     HASH_LAST_ID
  163. };
  164.  
  165. typedef enum reiser4_hash_plug_id reiser4_hash_plug_id_t;
  166.  
  167. /* Know tail policy plugin ids. */
  168. enum reiser4_tail_plug_id {
  169.     TAIL_NEVER_ID        = 0x0,
  170.     TAIL_ALWAYS_ID        = 0x1,
  171.     TAIL_SMART_ID        = 0x2,
  172.     TAIL_LAST_ID
  173. };
  174.  
  175. /* Known permission plugin ids. */
  176. enum reiser4_perm_plug_id {
  177.     PERM_RWX_ID        = 0x0,
  178.     PERM_LAST_ID
  179. };
  180.  
  181. /* Known stat data extension plugin ids. */
  182. enum reiser4_sdext_plug_id {
  183.     SDEXT_LW_ID            = 0x0,
  184.     SDEXT_UNIX_ID        = 0x1,
  185.     SDEXT_LT_ID             = 0x2,
  186.     SDEXT_SYMLINK_ID    = 0x3,
  187.     SDEXT_PLUG_ID        = 0x4,
  188.     SDEXT_FLAGS_ID          = 0x5,
  189.     SDEXT_CAPS_ID        = 0x6,
  190.     SDEXT_CLUSTER_ID    = 0x7,
  191.     SDEXT_CRYPTO_ID        = 0x8,
  192.     SDEXT_LAST_ID
  193. };
  194.  
  195. typedef enum reiser4_sdext_plug_id reiser4_sdext_plug_id_t;
  196.  
  197. /* Known format plugin ids. */
  198. enum reiser4_format_plug_id {
  199.     FORMAT_REISER40_ID    = 0x0,
  200.     FORMAT_LAST_ID
  201. };
  202.  
  203. /* Known oid allocator plugin ids. */
  204. enum reiser4_oid_plug_id {
  205.     OID_REISER40_ID        = 0x0,
  206.     OID_LAST_ID
  207. };
  208.  
  209. /* Known block allocator plugin ids. */
  210. enum reiser4_alloc_plug_id {
  211.     ALLOC_REISER40_ID    = 0x0,
  212.     ALLOC_LAST_ID
  213. };
  214.  
  215. /* Known journal plugin ids. */
  216. enum reiser4_journal_plug_id {
  217.     JOURNAL_REISER40_ID    = 0x0,
  218.     JOURNAL_LAST_ID
  219. };
  220.  
  221. /* Known key plugin ids. All these plugins are virtual in the sense they not
  222.    exist in kernel and needed in reiser4progs because we need them working with
  223.    both keys policy (large and short) without recompiling. */
  224. enum reiser4_key_plug_id {
  225.     KEY_SHORT_ID        = 0x0,
  226.     KEY_LARGE_ID        = 0x1,
  227.     KEY_LAST_ID
  228. };
  229.  
  230. typedef struct reiser4_plug reiser4_plug_t;
  231.  
  232. enum reiser4_fibre_plug_id {
  233.     FIBRE_LEXIC_ID        = 0x0,
  234.     FIBRE_DOT_O_ID        = 0x1,
  235.     FIBRE_EXT_1_ID        = 0x2,
  236.     FIBRE_EXT_3_ID        = 0x3,
  237.     FIBRE_LAST_ID
  238. };
  239.  
  240. typedef enum reiser4_fibre_plug_id reiser4_fibre_plug_id_t;
  241.  
  242. #define INVAL_PTR            ((void *)-1)
  243. #define INVAL_PID            ((rid_t)~0)
  244.  
  245. /* Type for key which is used both by library and plugins. */
  246. struct reiser4_key {
  247.     reiser4_plug_t *plug;
  248.     d64_t body[4];
  249. #ifndef ENABLE_MINIMAL
  250.     uint32_t adjust;
  251. #endif
  252. };
  253.  
  254. typedef struct reiser4_key reiser4_key_t;
  255.  
  256. /* Known key types. */
  257. enum key_type {
  258.     KEY_FILENAME_TYPE       = 0x0,
  259.     KEY_STATDATA_TYPE       = 0x1,
  260.     KEY_ATTRNAME_TYPE       = 0x2,
  261.     KEY_ATTRBODY_TYPE       = 0x3,
  262.     KEY_FILEBODY_TYPE       = 0x4,
  263.     KEY_LAST_TYPE
  264. };
  265.  
  266. typedef enum key_type key_type_t;
  267.  
  268. /* Tree Plugin SET index. */
  269. enum reiser4_tpset_id {
  270.     TPSET_KEY        = 0x0,
  271.     TPSET_NODE        = 0x1,
  272.     TPSET_NODEPTR        = 0x2,
  273.  
  274.     TPSET_LAST
  275. };
  276.  
  277. /* Object Plugin SET index. */
  278. enum reiser4_opset_id {
  279.     OPSET_OBJ        = 0x0,
  280.     OPSET_DIR        = 0x1,
  281.     OPSET_PERM        = 0x2,
  282.     OPSET_POLICY        = 0x3,
  283.     OPSET_HASH        = 0x4,
  284.     OPSET_FIBRE        = 0x5,
  285.     OPSET_STAT        = 0x6,
  286.     OPSET_DIRITEM        = 0x7,
  287.     OPSET_CRYPTO        = 0x8,
  288.     OPSET_DIGEST        = 0x9,
  289.     OPSET_CPRESS        = 0xa,
  290.     OPSET_CPRESS_MODE    = 0xb,
  291.     OPSET_CLUSTER        = 0xc,
  292.     OPSET_REGULAR        = 0xd,
  293.     
  294.     OPSET_STORE_LAST,
  295.     
  296.     /* These are not stored on disk in the current implementation. */
  297.     OPSET_CREATE        = OPSET_STORE_LAST + 1,
  298.     OPSET_MKDIR        = OPSET_STORE_LAST + 2,
  299.     OPSET_SYMLINK        = OPSET_STORE_LAST + 3,
  300.     OPSET_MKNODE        = OPSET_STORE_LAST + 4,
  301.     
  302. #ifndef ENABLE_MINIMAL
  303.     OPSET_TAIL        = OPSET_STORE_LAST + 5,
  304.     OPSET_EXTENT        = OPSET_STORE_LAST + 6,
  305.     OPSET_ACL        = OPSET_STORE_LAST + 7,
  306. #endif
  307.     OPSET_LAST
  308. };
  309.  
  310. /* Known print options for key. */
  311. enum print_options {
  312.     PO_DEFAULT              = 0x0,
  313.     PO_INODE                = 0x1,
  314.     PO_UNIT_OFFSETS         = 0x2
  315. };
  316.  
  317. typedef enum print_options print_options_t;
  318.  
  319. /* Type for describing reiser4 objects (like format, block allocator, etc)
  320.    inside the library, created by plugins themselves. */
  321. struct generic_entity {
  322.     reiser4_plug_t *plug;
  323. };
  324.  
  325. typedef struct generic_entity generic_entity_t;
  326.  
  327. struct tree_entity {
  328.     /* Plugin SET. Set of plugins needed for the reiser4progs work.
  329.        Consists of tree-specific plugins and object-specific plugins. */
  330.     reiser4_plug_t *tpset[TPSET_LAST];
  331.     reiser4_plug_t *opset[OPSET_LAST];
  332. };
  333.  
  334. typedef struct tree_entity tree_entity_t;
  335.  
  336. typedef struct reiser4_node reiser4_node_t;
  337. typedef struct reiser4_place reiser4_place_t;
  338.  
  339. #define place_blknr(place) ((place)->node->block->nr)
  340. #define place_blksize(place) ((place)->node->block->size)
  341.  
  342. /* Tree coord struct. */
  343. struct reiser4_place {
  344.     /* Item/unit pos and node it lies in. These fields should be always
  345.        initialized in a @place instance. */
  346.     pos_t pos;
  347.     reiser4_node_t *node;
  348.  
  349.     /* Item header stuff. There are item body pointer, length, flags, key
  350.        and plugin used in item at @pos. These fields are initialized in node
  351.        method fetch() and stored here to make work with them simpler. */
  352.     void *body;
  353.     uint32_t len;
  354.  
  355.     /* First unit offset within the item. Used by item internal code only. 
  356.        Useful to minimize the code (e.g. tail, ctail). */
  357.     uint32_t off;
  358.     
  359.     reiser4_key_t key;
  360.     reiser4_plug_t *plug;
  361. };
  362.  
  363. enum node_flags {
  364.     NF_HEARD_BANSHEE  = 1 << 0,
  365.     NF_LAST
  366. };
  367.  
  368. typedef enum node_flags node_flags_t;
  369.  
  370. /* Reiser4 in-memory node structure. */
  371. struct reiser4_node {
  372.     /* Node plugin. */
  373.     reiser4_plug_t *plug;
  374.  
  375.     /* Block node lies in. */
  376.     aal_block_t *block;
  377.  
  378.     /* Reference to tree if node is attached to tree. Sometimes node needs
  379.        access tree and tree functions. */
  380.     tree_entity_t *tree;
  381.     
  382.     /* Place in parent node. */
  383.     reiser4_place_t p;
  384.  
  385.     /* Reference to left neighbour. It is used for establishing silbing
  386.        links among nodes in memory tree cache. */
  387.     reiser4_node_t *left;
  388.  
  389.     /* Reference to right neighbour. It is used for establishing silbing
  390.        links among nodes in memory tree cache. */
  391.     reiser4_node_t *right;
  392.     
  393.     /* Usage counter to prevent releasing used nodes. */
  394.     signed int counter;
  395.  
  396.     /* Key plugin. */
  397.     reiser4_plug_t *kplug;
  398.  
  399.     /* Key policy. Optimisation to not call key->bodysize all the time. */
  400.     uint8_t keypol;
  401.     
  402.     /* Node state flags. */
  403.     uint32_t state;
  404.  
  405. #ifndef ENABLE_MINIMAL
  406.     /* Different node flags. */
  407.     uint32_t flags;
  408.     
  409.     /* Applications using this library sometimes need to embed information
  410.        into the objects of our library for their own use. */
  411.     void *data;
  412. #endif
  413. };
  414.  
  415. /* Stat data extension entity. */
  416. struct stat_entity {
  417.     reiser4_place_t *place;
  418.     reiser4_plug_t *ext_plug;
  419.     uint32_t offset;
  420. };
  421.  
  422. typedef struct stat_entity stat_entity_t;
  423.  
  424. #define stat_body(stat) ((char *)(stat)->place->body + (stat)->offset)
  425.  
  426. /* Shift flags control shift process */
  427. enum shift_flags {
  428.     /* Allows to try to make shift from the passed node to left neighbour
  429.        node. */
  430.     SF_ALLOW_LEFT    = 1 << 0,
  431.  
  432.     /* Allows to try to make shift from the passed node to right neighbour
  433.        node. */
  434.     SF_ALLOW_RIGHT   = 1 << 1,
  435.  
  436.     /* Allows to move insert point to one of neighbour nodes during
  437.        shift. */
  438.     SF_MOVE_POINT    = 1 << 2,
  439.  
  440.     /* Care about the insert point, shift only till this point. If not 
  441.        given, as much data as fit the destination node will be shifted. */
  442.     SF_UPDATE_POINT  = 1 << 3,
  443.  
  444.     /* Controls if shift allowed to merge border items or only whole items
  445.        may be shifted. Needed for repair code in order to disable merge of
  446.        checked item and not checked one. */
  447.     SF_ALLOW_MERGE   = 1 << 4,
  448.  
  449.     /* Controls if shift allowed to allocate new nodes during making
  450.        space. This is needed sometimes if there is not enough of free space
  451.        in existent nodes (one insert point points to and its neighbours)*/
  452.     SF_ALLOW_ALLOC   = 1 << 5,
  453.  
  454.     SF_ALLOW_PACK    = 1 << 6,
  455.  
  456.     /* Hold (do not leave) the current position (pointed by place->pos). */
  457.     SF_HOLD_POS      = 1 << 7
  458. };
  459.  
  460. typedef enum shift_flags shift_flags_t;
  461.  
  462. #define SF_DEFAULT                       \
  463.     (SF_ALLOW_LEFT | SF_ALLOW_RIGHT | SF_ALLOW_ALLOC | \
  464.      SF_ALLOW_MERGE | SF_MOVE_POINT | SF_ALLOW_PACK)
  465.  
  466. struct shift_hint {
  467.     /* Flag which shows that we need create an item before we will move
  468.        units into it. That is because node does not contain any items at all
  469.        or border items are not mergeable. Set and used by shift code. */
  470.     int create;
  471.  
  472.     /* Shows, that one of neighbour nodes has changed its leftmost key and
  473.        internal tree should be updated. */
  474.     int update;
  475.  
  476.     /* Item count and unit count which will be moved. */
  477.     uint32_t items_number;
  478.     uint32_t units_number;
  479.  
  480.     /* Used for internal shift purposes. */
  481.     uint32_t items_bytes;
  482.     uint32_t units_bytes;
  483.  
  484.     /* Shift control flags (left shift, move insert point, merge, etc) and
  485.        shift result flags. The result flags are needed for determining for
  486.        example was insert point moved to the corresponding neighbour or
  487.        not. Of course we might use control flags for that, but it would led
  488.        us to write a lot of useless stuff for saving control flags before
  489.        modifying it. */
  490.     uint32_t control;
  491.     uint32_t result;
  492.  
  493.     /* Insert point. It will be modified during shift. */
  494.     pos_t pos;
  495. };
  496.  
  497. typedef struct shift_hint shift_hint_t;
  498.  
  499. /* Different hints used for getting data to/from corresponding objects. */
  500. struct ptr_hint {    
  501.     uint64_t start;
  502.     uint64_t width;
  503. };
  504.  
  505. typedef struct ptr_hint ptr_hint_t;
  506.  
  507. struct sdhint_unix {
  508.     uint32_t uid;
  509.     uint32_t gid;
  510.     uint32_t atime;
  511.     uint32_t mtime;
  512.     uint32_t ctime;
  513.     uint32_t rdev;
  514.     uint64_t bytes;
  515. };
  516.  
  517. typedef struct sdhint_unix sdhint_unix_t;
  518.  
  519. struct sdhint_lw {
  520.     uint16_t mode;
  521.     uint32_t nlink;
  522.     uint64_t size;
  523. };
  524.  
  525. typedef struct sdhint_lw sdhint_lw_t;
  526.  
  527. struct sdhint_lt {
  528.     uint32_t atime;
  529.     uint32_t mtime;
  530.     uint32_t ctime;
  531. };
  532.  
  533. typedef struct sdhint_lt sdhint_lt_t;
  534.  
  535. struct sdhint_flags {
  536.     uint32_t flags;
  537. };
  538.  
  539. typedef struct sdhint_flags sdhint_flags_t;
  540.  
  541. struct sdhint_plug {
  542.     reiser4_plug_t *plug[OPSET_LAST];
  543.     uint64_t mask;
  544. };
  545.  
  546. typedef struct sdhint_plug sdhint_plug_t;
  547.  
  548. typedef sdhint_plug_t reiser4_opset_t;
  549.  
  550. /* These fields should be changed to what proper description of needed
  551.    extensions. */
  552. struct stat_hint {
  553.     /* Extensions mask */
  554.     uint64_t extmask;
  555.     
  556.     /* Stat data extensions */
  557.     void *ext[SDEXT_LAST_ID];
  558. };
  559.  
  560. typedef struct stat_hint stat_hint_t;
  561.  
  562. enum entry_type {
  563.     ET_NAME    = 0,
  564.     ET_SPCL    = 1
  565. };
  566.  
  567. typedef enum entry_type entry_type_t;
  568.  
  569. /* Object info struct contains the main information about a reiser4
  570.    object. These are: its key, parent key and coord of first item. */
  571. struct object_info {
  572.     reiser4_opset_t opset;
  573.     
  574.     tree_entity_t *tree;
  575.     reiser4_place_t start;
  576.     reiser4_key_t object;
  577.     reiser4_key_t parent;
  578. };
  579.  
  580. typedef struct object_info object_info_t;
  581. typedef object_info_t object_entity_t;
  582.  
  583.  
  584. /* Object hint. It is used to bring all about object information to object
  585.    plugin to create appropriate object by it. */
  586. struct object_hint {
  587.     /* Object info. */
  588.     object_info_t info;
  589.     
  590.     /* Additional mode to be masked to stat data mode. This is
  591.        needed for special files, but mat be used somewhere else. */
  592.     uint32_t mode;
  593.     
  594.     /* rdev field for special file. Nevertheless, it is stored
  595.        inside special file stat data field, we put it to @body
  596.        definition, because it is the special file essence. */
  597.     uint64_t rdev;
  598.     
  599.     /* SymLink name. */
  600.     char *name;
  601. };
  602.  
  603. typedef struct object_hint object_hint_t;
  604.  
  605. /* Bits for entity state field. For now here is only "dirty" bit, but possible
  606.    and other ones. */
  607. enum entity_state {
  608.     ENTITY_DIRTY = 0
  609. };
  610.  
  611. typedef enum entity_state entity_state_t;
  612.  
  613. /* Type for region enumerating callback functions. */
  614. typedef errno_t (*region_func_t) (uint64_t, uint64_t, void *);
  615.  
  616. /* Type for on-place functions. */
  617. typedef errno_t (*place_func_t) (reiser4_place_t *, void *);
  618.  
  619. /* Type for on-node functions. */
  620. typedef errno_t (*node_func_t) (reiser4_node_t *, void *);
  621.  
  622. /* Function definitions for enumeration item metadata and data. */
  623. typedef errno_t (*layout_func_t) (void *, region_func_t, void *);
  624.  
  625. #define REISER4_MIN_BLKSIZE (512)
  626. #define REISER4_MAX_BLKSIZE (8192)
  627.  
  628. struct entry_hint {
  629.     /* Entry metadata size. Filled by rem_entry and add_entry. */
  630.     uint16_t len;
  631.     
  632.     /* Tree coord entry lies at. Filled by dir plugin's lookup. */
  633.     reiser4_place_t place;
  634.  
  635.     /* Entry key within the current directory */
  636.     reiser4_key_t offset;
  637.  
  638.     /* The stat data key of the object entry points to */
  639.     reiser4_key_t object;
  640.  
  641.     /* Entry type (name or special), filled by readdir */
  642.     uint8_t type;
  643.  
  644.     /* Name of entry */
  645.     char name[REISER4_MAX_BLKSIZE];
  646.  
  647. #ifndef ENABLE_MINIMAL
  648.     /* Hook called onto each create item during write flow. */
  649.     place_func_t place_func;
  650.  
  651.     /* Related opaque data. May be used for passing something to
  652.        region_func() and place_func(). */
  653.     void *data;
  654. #endif
  655. };
  656.  
  657. typedef struct entry_hint entry_hint_t;
  658.  
  659. #ifndef ENABLE_MINIMAL
  660. enum slink_type {
  661.     SL_UNLINK,   /* safe-link for unlink */
  662.     SL_TRUNCATE, /* safe-link for truncate */
  663.     SL_E2T,      /* safe-link for extent->tail conversion */
  664.     SL_T2E,      /* safe-link for tail->extent conversion */
  665.     SL_LAST
  666. };
  667.  
  668. typedef enum slink_type slink_type_t;
  669.  
  670. struct slink_hint {
  671.     /* Key of StatData the link points to. */
  672.     reiser4_key_t key;
  673.     
  674.     /* The size to be truncated. */
  675.     uint64_t size;
  676.  
  677.     slink_type_t type;
  678. };
  679.  
  680. typedef struct slink_hint slink_hint_t;
  681. #endif
  682.  
  683. /* This structure contains fields which describe an item or unit to be inserted
  684.    into the tree. This is used for all tree modification purposes like
  685.    insertitem, or write some file data. */ 
  686. struct trans_hint {
  687.     /* Overhead of data to be inserted. This is needed for the case when we
  688.        insert directory item and tree should know how much space should be
  689.        prepared in the tree (ohd + len), but we don't need overhead for
  690.        updating stat data bytes field. Set by estimate. */
  691.     uint32_t overhead;
  692.     
  693.     /* Length of the data to be inserted/removed. Set by prep methods. */
  694.     int32_t len;
  695.  
  696.     /* Value needed for updating bytes field in stat data. Set by
  697.        estimate. */
  698.     uint64_t bytes;
  699.  
  700.     /* This is opaque pointer to item type specific information. */
  701.     void *specific;
  702.  
  703.     /* Count of items/units to be inserted into the tree. */
  704.     uint64_t count;
  705.  
  706.     /* The key of item/unit to be inserted. */
  707.     reiser4_key_t offset;
  708.  
  709.     /* Max real key. Set by estimate and needed for file body items. */
  710.     reiser4_key_t maxkey;
  711.  
  712.     /* Flags specific for the insert (raw for now), set at prepare stage. */
  713.     uint16_t insert_flags;
  714.  
  715.     /* Shift flags for shift operation. */
  716.     uint32_t shift_flags;
  717.     
  718.     /* Count of handled blocks in the first and the last extent unit. */
  719.     uint64_t head, tail;
  720.  
  721.     /* Hash table unformatted blocks lie in. Needed for extent code. */
  722.     aal_hash_table_t *blocks;
  723.     
  724.     /* Plugin to be used for working with item. */
  725.     reiser4_plug_t *plug;
  726.  
  727.     /* Hook, which lets know, that passed block region is removed. Used for
  728.        releasing unformatted blocks during tail converion, or for merging
  729.        extents, etc. */
  730.     region_func_t region_func;
  731.  
  732.     /* Hook called onto each create item during write flow. */
  733.     place_func_t place_func;
  734.  
  735.     /* Related opaque data. May be used for passing something to
  736.        region_func() and place_func(). */
  737.     void *data;
  738. };
  739.  
  740. typedef struct trans_hint trans_hint_t;
  741.  
  742. /* This structure contains related to tail conversion. */
  743. struct conv_hint {
  744.     /* New bytes value */
  745.     uint64_t bytes;
  746.  
  747.     /* Bytes to be converted. */
  748.     uint64_t count;
  749.     
  750.     /* File will be converted starting from this key. */
  751.     reiser4_key_t offset;
  752.     
  753.     /* Plugin item will be converted to. */
  754.     reiser4_plug_t *plug;
  755.  
  756.     /* Callback function caled onto each new created item during tail
  757.        conversion. */
  758.     place_func_t place_func;
  759.  
  760.     /* The flag if the hole should be inserted if there is nothing 
  761.        to read. Could be useful for recovery when there could be a 
  762.        gap between 2 items. */
  763.     bool_t ins_hole;
  764. };
  765.  
  766. typedef struct conv_hint conv_hint_t;
  767.  
  768. struct coll_hint {
  769.     uint8_t type;
  770.     void *specific;
  771. };
  772.  
  773. typedef struct coll_hint coll_hint_t;
  774.  
  775. /* Lookup bias. */
  776. enum lookup_bias {
  777.     /* Find for read, the match should be exact. */
  778.     FIND_EXACT              = 1,
  779.     /* Find for insert, the match should not be exaact. */
  780.     FIND_CONV               = 2
  781. };
  782.  
  783. typedef enum lookup_bias lookup_bias_t;
  784.  
  785. typedef struct lookup_hint lookup_hint_t;
  786.  
  787. typedef lookup_t (*coll_func_t) (tree_entity_t *, 
  788.                  reiser4_place_t *, 
  789.                  coll_hint_t *);
  790.  
  791. /* Hint to be used when looking for data in tree. */
  792. struct lookup_hint {
  793.     /* Key to be found. */
  794.     reiser4_key_t *key;
  795.  
  796.     /* Tree level lookup should stop on. */
  797.     uint8_t level;
  798.  
  799. #ifndef ENABLE_MINIMAL
  800.     /* Function for modifying position during lookup in some way needed by
  801.        caller. Key collisions may be handler though this. */
  802.     coll_func_t collision;
  803.  
  804.     /* Data needed by @lookup_func. */
  805.     coll_hint_t *hint;
  806. #endif
  807. };
  808.  
  809. #ifndef ENABLE_MINIMAL
  810. struct repair_hint {
  811.     int64_t len;
  812.     uint8_t mode;
  813. };
  814.  
  815. typedef struct repair_hint repair_hint_t;
  816.  
  817. enum reiser4_backuper {
  818.     BK_MASTER    = 0x0,
  819.     BK_FORMAT    = 0x1,
  820.     BK_LAST        = 0x2
  821. };
  822.  
  823. struct backup_hint {
  824.     aal_block_t block;
  825.     uint16_t off[BK_LAST + 1];
  826.  
  827.     /* Fields below are used by check_backup. */
  828.     
  829.     /* Block count. */
  830.     uint64_t blocks;
  831.  
  832.     /* Matched block count. */
  833.     uint64_t count;
  834.     uint64_t total;
  835. };
  836.  
  837. typedef struct backup_hint backup_hint_t;
  838. #endif
  839.  
  840. enum format_hint_mask {
  841.     PM_POLICY    = 0x0,
  842.     PM_KEY        = 0x1
  843. };
  844.  
  845. struct format_hint {
  846.     uint64_t blocks;
  847.     uint32_t blksize;
  848.     rid_t policy;
  849.     rid_t key;
  850.     
  851.     /* For repair purposes. Set plugin types that are overridden 
  852.        in the profile here, they must be set in the format plugin
  853.        check_struct. If bit is not set, plugins given with the above 
  854.        hints are merely hints. */
  855.     uint64_t mask;
  856. };
  857.  
  858. typedef struct format_hint format_hint_t;
  859.  
  860. struct reiser4_key_ops {
  861.     /* Function for dermining is key contains direntry name hashed or
  862.        not? */
  863.     int (*hashed) (reiser4_key_t *);
  864.  
  865.     /* Returns minimal key for this key-format */
  866.     reiser4_key_t *(*minimal) (void);
  867.     
  868.     /* Returns maximal key for this key-format */
  869.     reiser4_key_t *(*maximal) (void);
  870.  
  871.     /* Returns key size for particular key-format */
  872.     uint32_t (*bodysize) (void);
  873.  
  874.     /* Compares two keys by comparing its all components. This function
  875.        accepts not key entities, but key bodies. This is needed in order to
  876.        avoid memory copying in some cases. For instance when we look into
  877.        node and try to find position by key, we prefer to pass to comraw()
  878.        pointers to key bodies, than to copy tjem to new created key
  879.        entities. */
  880.     int (*compraw) (void *, void *);
  881.  
  882.     /* Compares two keys by comparing its all components. */
  883.     int (*compfull) (reiser4_key_t *, reiser4_key_t *);
  884.  
  885.     /* Compares two keys by comparing locality and objectid. */
  886.     int (*compshort) (reiser4_key_t *, reiser4_key_t *);
  887.     
  888.     /* Builds generic key (statdata, file body, etc). That is build key by
  889.        all its components. */
  890.     errno_t (*build_generic) (reiser4_key_t *, key_type_t,
  891.                   uint64_t, uint64_t, uint64_t, uint64_t);
  892.  
  893.     /* Builds key used for directory entries access. It uses name and hash
  894.        plugin to build hash and put it to key offset component. */
  895.     void (*build_hashed) (reiser4_key_t *, reiser4_plug_t *,
  896.                   reiser4_plug_t *, uint64_t, uint64_t, char *);
  897.     
  898. #ifndef ENABLE_MINIMAL
  899.     
  900.     /* Gets/sets key type (minor in reiser4 notation). */    
  901.     void (*set_type) (reiser4_key_t *, key_type_t);
  902.     key_type_t (*get_type) (reiser4_key_t *);
  903.  
  904.     /* Gets/sets key full objectid */
  905.     void (*set_fobjectid) (reiser4_key_t *, uint64_t);
  906.     uint64_t (*get_fobjectid) (reiser4_key_t *);
  907.     
  908.     /* Gets/sets key locality. */
  909.     void (*set_locality) (reiser4_key_t *, uint64_t);
  910. #endif
  911.     uint64_t (*get_locality) (reiser4_key_t *);
  912.     
  913.     /* Gets/sets key locality. */
  914.     void (*set_ordering) (reiser4_key_t *, uint64_t);
  915.     uint64_t (*get_ordering) (reiser4_key_t *);
  916.     
  917.     /* Gets/sets key objectid. */
  918.     void (*set_objectid) (reiser4_key_t *, uint64_t);
  919.     uint64_t (*get_objectid) (reiser4_key_t *);
  920.  
  921.     /* Gets/sets key offset */
  922.     void (*set_offset) (reiser4_key_t *, uint64_t);
  923.     uint64_t (*get_offset) (reiser4_key_t *);
  924.  
  925.     /* Extracts name from passed key. */
  926.     char *(*get_name) (reiser4_key_t *, char *);
  927.  
  928. #ifndef ENABLE_MINIMAL
  929.     /* Gets/sets directory key hash */
  930.     void (*set_hash) (reiser4_key_t *, uint64_t);
  931.     uint64_t (*get_hash) (reiser4_key_t *);
  932.     
  933.     /* Prints key into specified buffer */
  934.     void (*print) (reiser4_key_t *, aal_stream_t *, uint16_t);
  935.  
  936.     /* Check key body for validness. */
  937.     errno_t (*check_struct) (reiser4_key_t *);
  938. #endif
  939. };
  940.  
  941. typedef struct reiser4_key_ops reiser4_key_ops_t;
  942.  
  943.  
  944. struct reiser4_object_ops {
  945.     /* Loads object stat data to passed hint. */
  946.     errno_t (*stat) (object_entity_t *, stat_hint_t *);
  947.  
  948. #ifndef ENABLE_MINIMAL
  949.     /* These methods change @nlink value of passed @entity. */
  950.     errno_t (*link) (object_entity_t *);
  951.     errno_t (*unlink) (object_entity_t *);
  952.     bool_t (*linked) (object_entity_t *);
  953.  
  954.     /* Establish parent child relationship. */
  955.     errno_t (*attach) (object_entity_t *, object_entity_t *);
  956.     errno_t (*detach) (object_entity_t *, object_entity_t *);
  957.  
  958.     /* Updates object stat data from passed hint. */
  959.     errno_t (*update) (object_entity_t *, stat_hint_t *);
  960.     
  961.     /* Creates new file with passed parent and object keys. */
  962.     object_entity_t *(*create) (object_hint_t *);
  963.  
  964.     /* Delete file body and stat data if any. */
  965.     errno_t (*clobber) (object_entity_t *);
  966.  
  967.     /* Writes the data to file from passed buffer. */
  968.     int64_t (*write) (object_entity_t *, void *, uint64_t);
  969.  
  970.     /* Directory specific methods */
  971.     errno_t (*add_entry) (object_entity_t *, entry_hint_t *);
  972.     errno_t (*rem_entry) (object_entity_t *, entry_hint_t *);
  973.     errno_t (*build_entry) (object_entity_t *, entry_hint_t *);
  974.     
  975.     /* Truncates file at current offset onto passed units. */
  976.     errno_t (*truncate) (object_entity_t *, uint64_t);
  977.  
  978.     /* Function for going through all metadata blocks specfied file
  979.        occupied. It is needed for accessing file's metadata. */
  980.     errno_t (*metadata) (object_entity_t *, place_func_t, void *);
  981.     
  982.     /* Function for going through the all data blocks specfied file
  983.        occupies. It is needed for the purposes like data fragmentation
  984.        measuring, etc. */
  985.     errno_t (*layout) (object_entity_t *, region_func_t, void *);
  986.  
  987.     /* Converts file body to item denoted by @plug. */
  988.     errno_t (*convert) (object_entity_t *, reiser4_plug_t *plug);
  989.     
  990.     /* Checks and recover the structure of the object. */
  991.     errno_t (*check_struct) (object_entity_t *, place_func_t, 
  992.                  void *, uint8_t);
  993.     
  994.     /* Checks attach of the @object to the @parent. */
  995.     errno_t (*check_attach) (object_entity_t *, object_entity_t *,
  996.                  place_func_t, void *, uint8_t);
  997.     
  998.     /* Realizes if the object can be of this plugin and can be recovered as
  999.        a such. */
  1000.     object_entity_t *(*recognize) (object_info_t *);
  1001.     
  1002.     /* Creates the fake object by the gived @info. Needed to recover "/" and
  1003.        "lost+found" direcories if their SD are broken. */
  1004.     object_entity_t *(*fake) (object_info_t *);
  1005. #endif
  1006.     
  1007.     /* Change current position to passed value. */
  1008.     errno_t (*seek) (object_entity_t *, uint64_t);
  1009.     
  1010.     /* Opens file with specified key */
  1011.     object_entity_t *(*open) (object_info_t *);
  1012.  
  1013.     /* Closes previously opened or created directory. */
  1014.     void (*close) (object_entity_t *);
  1015.  
  1016.     /* Resets internal position. */
  1017.     errno_t (*reset) (object_entity_t *);
  1018.    
  1019.     /* Returns current position in directory. */
  1020.     uint64_t (*offset) (object_entity_t *);
  1021.  
  1022.     /* Makes lookup inside file */
  1023.     lookup_t (*lookup) (object_entity_t *, char *, entry_hint_t *);
  1024.  
  1025.     /* Finds actual file stat data (used in symlinks). */
  1026.     errno_t (*follow) (object_entity_t *, reiser4_key_t *,
  1027.                reiser4_key_t *);
  1028.  
  1029.     /* Reads the data from file to passed buffer. */
  1030.     int64_t (*read) (object_entity_t *, void *, uint64_t);
  1031.  
  1032.     /* Directory read method. */
  1033.     int32_t (*readdir) (object_entity_t *, entry_hint_t *);
  1034.  
  1035.     /* Return current position in directory. */
  1036.     errno_t (*telldir) (object_entity_t *, reiser4_key_t *);
  1037.  
  1038.     /* Change current position in directory. */
  1039.     errno_t (*seekdir) (object_entity_t *, reiser4_key_t *);
  1040. };
  1041.  
  1042. typedef struct reiser4_object_ops reiser4_object_ops_t;
  1043.  
  1044. struct item_balance_ops {
  1045.     /* Returns unit count in item passed place point to. */
  1046.     uint32_t (*units) (reiser4_place_t *);
  1047.     
  1048.     /* Makes lookup for passed key. */
  1049.     lookup_t (*lookup) (reiser4_place_t *, lookup_hint_t *,
  1050.                 lookup_bias_t);
  1051.     
  1052. #ifndef ENABLE_MINIMAL
  1053.     /* Merges two neighbour items in the same node. Returns space released
  1054.        Needed for fsck. */
  1055.     int32_t (*merge) (reiser4_place_t *, reiser4_place_t *);
  1056.     
  1057.     /* Checks if items mergeable, that is if unit of one item can belong to
  1058.        another one. Returns 1 if so, 0 otherwise. */
  1059.     int (*mergeable) (reiser4_place_t *, reiser4_place_t *);
  1060.  
  1061.     /* Estimates shift operation. */
  1062.     errno_t (*prep_shift) (reiser4_place_t *, reiser4_place_t *, shift_hint_t *);
  1063.     
  1064.     /* Performs shift of units from passed @src item to @dst item. */
  1065.     errno_t (*shift_units) (reiser4_place_t *, reiser4_place_t *, shift_hint_t *);
  1066.  
  1067.     /* Set the key of a particular unit of the item. */
  1068.     errno_t (*update_key) (reiser4_place_t *, reiser4_key_t *);
  1069.     
  1070.     /* Get the max real key which is stored in the item. */
  1071.     errno_t (*maxreal_key) (reiser4_place_t *, reiser4_key_t *);
  1072.  
  1073.     /* Collision handler item method. */
  1074.     lookup_t (*collision) (reiser4_place_t *, coll_hint_t *);
  1075. #endif
  1076.  
  1077.     /* Get the key of a particular unit of the item. */
  1078.     errno_t (*fetch_key) (reiser4_place_t *, reiser4_key_t *);
  1079.  
  1080.     /* Get the max key which could be stored in the item of this type. */
  1081.     errno_t (*maxposs_key) (reiser4_place_t *, reiser4_key_t *);
  1082. };
  1083.  
  1084. typedef struct item_balance_ops item_balance_ops_t;
  1085.  
  1086. struct item_object_ops {
  1087.     /* Reads passed amount of bytes from the item. */
  1088.     int64_t (*read_units) (reiser4_place_t *, trans_hint_t *);
  1089.         
  1090.     /* Fetches one or more units at passed @place to passed hint. */
  1091.     int64_t (*fetch_units) (reiser4_place_t *, trans_hint_t *);
  1092.  
  1093. #ifndef ENABLE_MINIMAL
  1094.     /* Estimates write operation. */
  1095.     errno_t (*prep_write) (reiser4_place_t *, trans_hint_t *);
  1096.  
  1097.     /* Writes data to item. */
  1098.     int64_t (*write_units) (reiser4_place_t *, trans_hint_t *);
  1099.  
  1100.     /* Estimates insert operation. */
  1101.     errno_t (*prep_insert) (reiser4_place_t *, trans_hint_t *);
  1102.  
  1103.     /* Inserts some amount of units described by passed hint into passed
  1104.        item denoted by place. */
  1105.     int64_t (*insert_units) (reiser4_place_t *, trans_hint_t *);
  1106.  
  1107.     /* Removes specified unit from the item. */
  1108.     errno_t (*remove_units) (reiser4_place_t *, trans_hint_t *);
  1109.  
  1110.     /* Updates unit at passed place by data from passed hint. */
  1111.     int64_t (*update_units) (reiser4_place_t *, trans_hint_t *);
  1112.  
  1113.     /* Cuts out some amount of data */
  1114.     int64_t (*trunc_units) (reiser4_place_t *, trans_hint_t *);
  1115.  
  1116.     /* Goes through all blocks item points to. */
  1117.     errno_t (*layout) (reiser4_place_t *, region_func_t, void *);
  1118.         
  1119.     /* Gets the size of the data item keeps. */
  1120.     uint64_t (*size) (reiser4_place_t *);
  1121.     
  1122.     /* Gets the amount of bytes data item keeps takes on the disk. */
  1123.     uint64_t (*bytes) (reiser4_place_t *);
  1124.  
  1125.     /* Gets the overhead for the item creation. */
  1126.     uint16_t (*overhead) ();
  1127. #endif
  1128. };
  1129.  
  1130. typedef struct item_object_ops item_object_ops_t;
  1131.  
  1132. #ifndef ENABLE_MINIMAL
  1133. struct item_repair_ops {
  1134.     /* Estimate merge operation. */
  1135.     errno_t (*prep_insert_raw) (reiser4_place_t *, trans_hint_t *);
  1136.  
  1137.     /* Copies some amount of units from @src to @dst with partial
  1138.        overwritting. */
  1139.     errno_t (*insert_raw) (reiser4_place_t *, trans_hint_t *);
  1140.  
  1141.     /* Checks the item structure. */
  1142.     errno_t (*check_struct) (reiser4_place_t *, repair_hint_t *);
  1143.     
  1144.     /* Does some specific actions if a block the item points to is wrong. */
  1145.     errno_t (*check_layout) (reiser4_place_t *, repair_hint_t *,
  1146.                  region_func_t, void *);
  1147.  
  1148.     errno_t (*pack) (reiser4_place_t *, aal_stream_t *);
  1149.     errno_t (*unpack) (reiser4_place_t *, aal_stream_t *);
  1150. };
  1151. #endif
  1152.  
  1153. typedef struct item_repair_ops item_repair_ops_t;
  1154.  
  1155. #ifndef ENABLE_MINIMAL
  1156. struct item_debug_ops {
  1157.     /* Prints item into specified buffer. */
  1158.     void (*print) (reiser4_place_t *, aal_stream_t *, uint16_t);
  1159. };
  1160. #endif
  1161.  
  1162. typedef struct item_debug_ops item_debug_ops_t;
  1163.  
  1164. struct item_tree_ops {
  1165.     /* Initialize the item-specific place info. */
  1166.     void (*init) (reiser4_place_t *);
  1167.     
  1168.     /* Return block number from passed place. Place is nodeptr item. */
  1169.     blk_t (*down_link) (reiser4_place_t *);
  1170.  
  1171. #ifndef ENABLE_MINIMAL
  1172.     /* Update link block number. */
  1173.     errno_t (*update_link) (reiser4_place_t *, blk_t);
  1174. #endif
  1175. };
  1176.  
  1177. typedef struct item_tree_ops item_tree_ops_t;
  1178.  
  1179. struct reiser4_item_ops {
  1180.     item_tree_ops_t *tree;
  1181.     item_object_ops_t *object;
  1182.     item_balance_ops_t *balance;
  1183. #ifndef ENABLE_MINIMAL
  1184.     item_debug_ops_t *debug;
  1185.     item_repair_ops_t *repair;
  1186. #endif
  1187. };
  1188.  
  1189. typedef struct reiser4_item_ops reiser4_item_ops_t;
  1190.  
  1191. /* Stat data extension plugin */
  1192. struct reiser4_sdext_ops {
  1193. #ifndef ENABLE_MINIMAL
  1194.     /* Initialize stat data extension data at passed pointer. */
  1195.     errno_t (*init) (stat_entity_t *, void *);
  1196.  
  1197.     /* Prints stat data extension data into passed buffer. */
  1198.     void (*print) (stat_entity_t *, aal_stream_t *, uint16_t);
  1199.  
  1200.     /* Checks sd extension content. */
  1201.     errno_t (*check_struct) (stat_entity_t *, repair_hint_t *);
  1202. #endif
  1203.     /* Reads stat data extension data. */
  1204.     errno_t (*open) (stat_entity_t *, void *);
  1205.  
  1206.     /* Returns length of the extension. */
  1207.     uint32_t (*length) (stat_entity_t *, void *);
  1208. };
  1209.  
  1210. typedef struct reiser4_sdext_ops reiser4_sdext_ops_t;
  1211.  
  1212. /* Node plugin operates on passed block. It doesn't any initialization, so it
  1213.    hasn't close method and all its methods accepts first argument aal_block_t,
  1214.    not initialized previously hypothetic instance of node. */
  1215. struct reiser4_node_ops {
  1216. #ifndef ENABLE_MINIMAL
  1217.     /* Get node state flags and set them back. */
  1218.     uint32_t (*get_state) (reiser4_node_t *);
  1219.     void (*set_state) (reiser4_node_t *, uint32_t);
  1220.  
  1221.     /* Performs shift of items and units. */
  1222.     errno_t (*shift) (reiser4_node_t *, reiser4_node_t *, 
  1223.               shift_hint_t *);
  1224.  
  1225.     /* Fuses two neighbour items in passed node at passed positions. */
  1226.     errno_t (*merge) (reiser4_node_t *, pos_t *, pos_t *);
  1227.     
  1228.     /* Checks thoroughly the node structure and fixes what needed. */
  1229.     errno_t (*check_struct) (reiser4_node_t *, uint8_t);
  1230.  
  1231.     /* Packing/unpacking metadata. */
  1232.     reiser4_node_t *(*unpack) (aal_block_t *, 
  1233.                    reiser4_plug_t *, 
  1234.                    aal_stream_t *);
  1235.     
  1236.     errno_t (*pack) (reiser4_node_t *, aal_stream_t *);
  1237.  
  1238.     /* Prints node into given buffer. */
  1239.     void (*print) (reiser4_node_t *, aal_stream_t *,
  1240.                uint32_t, uint32_t, uint16_t);
  1241.     
  1242.     /* Returns node overhead. */
  1243.     uint16_t (*overhead) (reiser4_node_t *);
  1244.  
  1245.     /* Returns node max possible space. */
  1246.     uint16_t (*maxspace) (reiser4_node_t *);
  1247.     
  1248.     /* Returns free space in the node. */
  1249.     uint16_t (*space) (reiser4_node_t *);
  1250.  
  1251.     /* Inserts item at specified pos. */
  1252.     errno_t (*insert) (reiser4_node_t *, pos_t *,
  1253.                trans_hint_t *);
  1254.     
  1255.     /* Writes data to the node. */
  1256.     int64_t (*write) (reiser4_node_t *, pos_t *,
  1257.               trans_hint_t *);
  1258.  
  1259.     /* Truncate item at passed pos. */
  1260.     int64_t (*trunc) (reiser4_node_t *, pos_t *,
  1261.               trans_hint_t *);
  1262.  
  1263.     /* Removes item/unit at specified pos. */
  1264.     errno_t (*remove) (reiser4_node_t *, pos_t *,
  1265.                trans_hint_t *);
  1266.  
  1267.     /* Shrinks node without calling any item methods. */
  1268.     errno_t (*shrink) (reiser4_node_t *, pos_t *,
  1269.                uint32_t, uint32_t);
  1270.  
  1271.     /* Merge 2 items -- insert/overwrite @src_entity parts to
  1272.        @dst_entity. */
  1273.     errno_t (*insert_raw) (reiser4_node_t *, pos_t *, 
  1274.                    trans_hint_t *);
  1275.  
  1276.     /* Copies items from @src_entity to @dst_entity. */
  1277.     errno_t (*copy) (reiser4_node_t *, pos_t *,
  1278.              reiser4_node_t *, pos_t *,
  1279.              uint32_t);
  1280.     
  1281.     /* Expands node (makes space) at passed pos. */
  1282.     errno_t (*expand) (reiser4_node_t *, pos_t *,
  1283.                uint32_t, uint32_t);
  1284.  
  1285.     /* Updates key at passed pos by passed key. */
  1286.     errno_t (*set_key) (reiser4_node_t *, pos_t *,
  1287.                 reiser4_key_t *);
  1288.  
  1289.     void (*set_level) (reiser4_node_t *, uint8_t);
  1290.     void (*set_mstamp) (reiser4_node_t *, uint32_t);
  1291.     void (*set_fstamp) (reiser4_node_t *, uint64_t);
  1292.  
  1293.     /* Get mkfs and flush stamps */
  1294.     uint32_t (*get_mstamp) (reiser4_node_t *);
  1295.         uint64_t (*get_fstamp) (reiser4_node_t *);
  1296.     
  1297.     /* Get/set item flags. */
  1298.     void (*set_flags) (reiser4_node_t *, uint32_t, uint16_t);
  1299.     uint16_t (*get_flags) (reiser4_node_t *, uint32_t);
  1300.  
  1301.     /* Saves node to device */
  1302.     errno_t (*sync) (reiser4_node_t *);
  1303.  
  1304.     /* Initializes node with passed block and key plugin. */
  1305.     reiser4_node_t *(*init) (aal_block_t *, uint8_t , 
  1306.                 reiser4_plug_t *);
  1307. #endif
  1308.     /* Open the node on the given block with the given key plugin. */
  1309.     reiser4_node_t *(*open) (aal_block_t *, reiser4_plug_t *);
  1310.     
  1311.     /* Destroys the node entity. */
  1312.     errno_t (*fini) (reiser4_node_t *);
  1313.  
  1314.     /* Fetches item data to passed @place */
  1315.     errno_t (*fetch) (reiser4_node_t *, pos_t *,
  1316.               reiser4_place_t *);
  1317.     
  1318.     /* Returns item count */
  1319.     uint32_t (*items) (reiser4_node_t *);
  1320.     
  1321.     /* Makes lookup inside node by specified key */
  1322.     lookup_t (*lookup) (reiser4_node_t *, lookup_hint_t *, 
  1323.                 lookup_bias_t, pos_t *);
  1324.     
  1325.     /* Gets/sets key at pos */
  1326.     errno_t (*get_key) (reiser4_node_t *, pos_t *,
  1327.                 reiser4_key_t *);
  1328.  
  1329.     /* Return node level. */
  1330.     uint8_t (*get_level) (reiser4_node_t *);
  1331. };
  1332.  
  1333. typedef struct reiser4_node_ops reiser4_node_ops_t;
  1334.  
  1335. /* Hash plugin operations. */
  1336. struct reiser4_hash_ops {
  1337.     uint64_t (*build) (unsigned char *, uint32_t);
  1338. };
  1339.  
  1340. typedef struct reiser4_hash_ops reiser4_hash_ops_t;
  1341.  
  1342. struct reiser4_fibre_ops {
  1343.     uint8_t (*build) (char *, uint32_t);
  1344. };
  1345.  
  1346. typedef struct reiser4_fibre_ops reiser4_fibre_ops_t;
  1347.  
  1348. /* Disk-format plugin */
  1349. struct reiser4_format_ops {
  1350. #ifndef ENABLE_MINIMAL
  1351.     /* Called during filesystem creating. It forms format-specific super
  1352.        block, initializes plugins and calls their create method. */
  1353.     generic_entity_t *(*create) (aal_device_t *, format_hint_t *);
  1354.  
  1355.     /* Save the important permanent info about the format into the stream 
  1356.        to be backuped on the fs & check this info. */
  1357.     errno_t (*backup) (generic_entity_t *, backup_hint_t *);
  1358.     errno_t (*check_backup) (backup_hint_t *);
  1359.  
  1360.     /* Regenerate the format instance by the backup. */
  1361.     generic_entity_t *(*regenerate) (aal_device_t *, backup_hint_t *);
  1362.     
  1363.     /* Save format data to device. */
  1364.     errno_t (*sync) (generic_entity_t *);
  1365.  
  1366.     /* Change entity state (dirty, etc) */
  1367.     uint32_t (*get_state) (generic_entity_t *);
  1368.     void (*set_state) (generic_entity_t *, uint32_t);
  1369.  
  1370.     /* Format pack/unpack methods. */
  1371.     generic_entity_t *(*unpack) (aal_device_t *, uint32_t, aal_stream_t *);
  1372.     errno_t (*pack) (generic_entity_t *, aal_stream_t *);
  1373.     
  1374.     /* Update only fields which can be changed after journal replay in
  1375.        memory to avoid second checking. */
  1376.     errno_t (*update) (generic_entity_t *);
  1377.         
  1378.     /* Prints all useful information about the format */
  1379.     void (*print) (generic_entity_t *, aal_stream_t *, uint16_t);
  1380.     
  1381.     void (*set_len) (generic_entity_t *, uint64_t);
  1382.     void (*set_root) (generic_entity_t *, uint64_t);
  1383.     void (*set_free) (generic_entity_t *, uint64_t);
  1384.     void (*set_stamp) (generic_entity_t *, uint32_t);
  1385.     void (*set_policy) (generic_entity_t *, rid_t);
  1386.     void (*set_height) (generic_entity_t *, uint16_t);
  1387.  
  1388.     /* Return plugin ids for journal, block allocator, and oid allocator
  1389.        components. */
  1390.     rid_t (*journal_pid) (generic_entity_t *);
  1391.     rid_t (*alloc_pid) (generic_entity_t *);
  1392.     rid_t (*oid_pid) (generic_entity_t *);
  1393.  
  1394.     /* Format enumerator function. */
  1395.     errno_t (*layout) (generic_entity_t *, region_func_t, void *);
  1396.  
  1397.     /* Basic consistency checks */
  1398.     errno_t (*valid) (generic_entity_t *);
  1399.  
  1400.     /* Check format-specific super block for validness. */
  1401.     errno_t (*check_struct) (generic_entity_t *, backup_hint_t *, 
  1402.                  format_hint_t *, uint8_t);
  1403. #endif
  1404.     /* Returns the key plugin id. */
  1405.     rid_t (*key_pid) (generic_entity_t *);
  1406.     
  1407.     /* Called during filesystem opening (mounting). It reads format-specific
  1408.        super block and initializes plugins suitable for this format. */
  1409.     generic_entity_t *(*open) (aal_device_t *, uint32_t);
  1410.     
  1411.     /* Closes opened or created previously filesystem. Frees all assosiated
  1412.        memory. */
  1413.     void (*close) (generic_entity_t *);
  1414.  
  1415.     /* Get tree root block number from format. */
  1416.     uint64_t (*get_root) (generic_entity_t *);
  1417.  
  1418.     /* Get tree height from format. */
  1419.     uint16_t (*get_height) (generic_entity_t *);
  1420.  
  1421. #ifndef ENABLE_MINIMAL
  1422.     /* Gets start of the filesystem. */
  1423.     uint64_t (*start) (generic_entity_t *);
  1424.  
  1425.     /* Format length in blocks. */
  1426.     uint64_t (*get_len) (generic_entity_t *);
  1427.  
  1428.     /* Number of free blocks. */
  1429.     uint64_t (*get_free) (generic_entity_t *);
  1430.  
  1431.     /* Return mkfs stamp. */
  1432.     uint32_t (*get_stamp) (generic_entity_t *);
  1433.  
  1434.     /* Return policy (tail, extents, etc). */
  1435.     rid_t (*get_policy) (generic_entity_t *);
  1436.  
  1437.     /* Returns area where oid data lies in */
  1438.     void (*oid_area) (generic_entity_t *, void **, uint32_t *);
  1439. #endif
  1440. };
  1441.  
  1442. typedef struct reiser4_format_ops reiser4_format_ops_t;
  1443.  
  1444. #ifndef ENABLE_MINIMAL
  1445. struct reiser4_oid_ops {
  1446.     /* Opens oid allocator on passed format entity. */
  1447.     generic_entity_t *(*open) (generic_entity_t *);
  1448.  
  1449.     /* Closes passed instance of oid allocator */
  1450.     void (*close) (generic_entity_t *);
  1451.     
  1452.     /* Creates oid allocator on passed format entity. */
  1453.     generic_entity_t *(*create) (generic_entity_t *);
  1454.  
  1455.     /* Synchronizes oid allocator */
  1456.     errno_t (*sync) (generic_entity_t *);
  1457.  
  1458.     errno_t (*layout) (generic_entity_t *,
  1459.                region_func_t, void *);
  1460.  
  1461.     /* Entity state functions. */
  1462.     uint32_t (*get_state) (generic_entity_t *);
  1463.     void (*set_state) (generic_entity_t *, uint32_t);
  1464.  
  1465.     /* Sets/gets next object id */
  1466.     oid_t (*get_next) (generic_entity_t *);
  1467.     void (*set_next) (generic_entity_t *, oid_t);
  1468.  
  1469.     /* Gets next object id */
  1470.     oid_t (*allocate) (generic_entity_t *);
  1471.  
  1472.     /* Releases passed object id */
  1473.     void (*release) (generic_entity_t *, oid_t);
  1474.     
  1475.     /* Gets/sets the number of used object ids */
  1476.     uint64_t (*get_used) (generic_entity_t *);
  1477.     void (*set_used) (generic_entity_t *, uint64_t);
  1478.     
  1479.     /* Returns the number of free object ids */
  1480.     uint64_t (*free) (generic_entity_t *);
  1481.  
  1482.     /* Prints oid allocator data */
  1483.     void (*print) (generic_entity_t *, aal_stream_t *, uint16_t);
  1484.  
  1485.     /* Makes check for validness */
  1486.     errno_t (*valid) (generic_entity_t *);
  1487.     
  1488.     /* Root locality and objectid and lost+found objectid. */
  1489.     oid_t (*root_locality) ();
  1490.     oid_t (*root_objectid) ();
  1491.     oid_t (*lost_objectid) ();
  1492.     oid_t (*slink_locality) ();
  1493. };
  1494.  
  1495. typedef struct reiser4_oid_ops reiser4_oid_ops_t;
  1496.  
  1497. struct reiser4_alloc_ops {
  1498.     /* Functions for create and open block allocator. */
  1499.     generic_entity_t *(*open) (aal_device_t *, uint32_t, uint64_t);
  1500.     generic_entity_t *(*create) (aal_device_t *, uint32_t, uint64_t);
  1501.  
  1502.     /* Closes block allocator. */
  1503.     void (*close) (generic_entity_t *);
  1504.  
  1505.     /* Saves block allocator data to desired device. */
  1506.     errno_t (*sync) (generic_entity_t *);
  1507.  
  1508.     /* Make dirty and clean functions. */
  1509.     uint32_t (*get_state) (generic_entity_t *);
  1510.     void (*set_state) (generic_entity_t *, uint32_t);
  1511.     
  1512.     /* Format pack/unpack methods. */
  1513.     errno_t (*pack) (generic_entity_t *, aal_stream_t *);
  1514.     generic_entity_t *(*unpack) (aal_device_t *, uint32_t, aal_stream_t *);
  1515.     
  1516.     /* Assign the bitmap to the block allocator */
  1517.     errno_t (*assign) (generic_entity_t *, void *);
  1518.  
  1519.     /* Extract block allocator data into passed bitmap */
  1520.     errno_t (*extract) (generic_entity_t *, void *);
  1521.     
  1522.     /* Returns number of used blocks */
  1523.     uint64_t (*used) (generic_entity_t *);
  1524.  
  1525.     /* Returns number of unused blocks */
  1526.     uint64_t (*free) (generic_entity_t *);
  1527.  
  1528.     /* Checks blocks allocator on validness */
  1529.     errno_t (*valid) (generic_entity_t *);
  1530.     
  1531.     /* Checks blocks allocator on validness */
  1532.     errno_t (*check_struct) (generic_entity_t *, uint8_t mode);
  1533.  
  1534.     /* Prints block allocator data */
  1535.     void (*print) (generic_entity_t *, aal_stream_t *, uint16_t);
  1536.  
  1537.     /* Calls func for each block in block allocator */
  1538.     errno_t (*layout) (generic_entity_t *,
  1539.                region_func_t, void *);
  1540.     
  1541.     /* Checks if passed range of blocks used */
  1542.     int (*occupied) (generic_entity_t *, uint64_t,
  1543.              uint64_t);
  1544.         
  1545.     /* Checks if passed range of blocks unused */
  1546.     int (*available) (generic_entity_t *, uint64_t,
  1547.               uint64_t);
  1548.  
  1549.     /* Marks passed block as used */
  1550.     errno_t (*occupy) (generic_entity_t *, uint64_t,
  1551.                uint64_t);
  1552.  
  1553.     /* Tries to allocate passed amount of blocks */
  1554.     uint64_t (*allocate) (generic_entity_t *, uint64_t *,
  1555.                   uint64_t);
  1556.     
  1557.     /* Deallocates passed blocks */
  1558.     errno_t (*release) (generic_entity_t *, uint64_t,
  1559.                 uint64_t);
  1560.  
  1561.     /* Calls func for all not reliable regions. */
  1562.     errno_t (*layout_bad) (generic_entity_t *,
  1563.                    region_func_t, void *);
  1564.     
  1565.     /* Calls func for the region the blk lies in. */
  1566.     errno_t (*region) (generic_entity_t *, blk_t,
  1567.                region_func_t, void *);
  1568. };
  1569.  
  1570. typedef struct reiser4_alloc_ops reiser4_alloc_ops_t;
  1571.  
  1572. struct reiser4_journal_ops {
  1573.     /* Opens journal on specified device. */
  1574.     generic_entity_t *(*open) (aal_device_t *, uint32_t, 
  1575.                    generic_entity_t *, generic_entity_t *,
  1576.                    uint64_t, uint64_t);
  1577.  
  1578.     /* Creates journal on specified device. */
  1579.     generic_entity_t *(*create) (aal_device_t *, uint32_t, 
  1580.                      generic_entity_t *, generic_entity_t *, 
  1581.                      uint64_t, uint64_t);
  1582.  
  1583.     /* Returns the device journal lies on */
  1584.     aal_device_t *(*device) (generic_entity_t *);
  1585.     
  1586.     /* Frees journal instance */
  1587.     void (*close) (generic_entity_t *);
  1588.  
  1589.     /* Checks journal metadata on validness */
  1590.     errno_t (*valid) (generic_entity_t *);
  1591.     
  1592.     /* Synchronizes journal */
  1593.     errno_t (*sync) (generic_entity_t *);
  1594.  
  1595.     /* Functions for set/get object state (dirty, clean, etc). */
  1596.     uint32_t (*get_state) (generic_entity_t *);
  1597.     void (*set_state) (generic_entity_t *, uint32_t);
  1598.     
  1599.     /* Replays the journal */
  1600.     errno_t (*replay) (generic_entity_t *);
  1601.  
  1602.     /* Prints journal content */
  1603.     void (*print) (generic_entity_t *, aal_stream_t *, uint16_t);
  1604.     
  1605.     /* Checks thoroughly the journal structure. */
  1606.     errno_t (*check_struct) (generic_entity_t *, layout_func_t, void *);
  1607.  
  1608.     /* Invalidates the journal. */
  1609.     void (*invalidate) (generic_entity_t *);
  1610.     
  1611.     /* Calls func for each block in block allocator. */
  1612.     errno_t (*layout) (generic_entity_t *, region_func_t, void *);
  1613.  
  1614.     /* Pack/unpack the journal blocks. */
  1615.     errno_t (*pack) (generic_entity_t *, aal_stream_t *);
  1616.     generic_entity_t *(*unpack) (aal_device_t *, uint32_t, 
  1617.                      generic_entity_t *, 
  1618.                      generic_entity_t *, 
  1619.                      uint64_t, uint64_t, 
  1620.                      aal_stream_t *);
  1621. };
  1622.  
  1623. typedef struct reiser4_journal_ops reiser4_journal_ops_t;
  1624.  
  1625. /* Tail policy plugin operations. */
  1626. struct reiser4_policy_ops {
  1627.     int (*tails) (uint64_t);
  1628. };
  1629.  
  1630. typedef struct reiser4_policy_ops reiser4_policy_ops_t;
  1631. #endif
  1632.  
  1633. #define PLUG_MAX_DESC    64
  1634. #define PLUG_MAX_LABEL    22
  1635.  
  1636. typedef struct reiser4_core reiser4_core_t;
  1637.  
  1638. /* Plugin init() and fini() function types. They are used for calling these
  1639.    functions during plugin initialization. */
  1640. typedef errno_t (*plug_fini_t) (reiser4_core_t *);
  1641. typedef errno_t (*plug_func_t) (reiser4_plug_t *, void *);
  1642. typedef reiser4_plug_t *(*plug_init_t) (reiser4_core_t *);
  1643.  
  1644. /* Plugin class descriptor. Used for loading plugins. */
  1645. struct plug_class {
  1646.     /* Plugin initialization routine. */
  1647.     plug_init_t init;
  1648.     
  1649.     /* Plugin finalization routine. */
  1650.     plug_fini_t fini;
  1651. };
  1652.  
  1653. typedef struct plug_class plug_class_t;
  1654.  
  1655. struct plug_ident {
  1656.     /* Plugin id, type and group. */
  1657.     rid_t id;
  1658.     uint8_t group;
  1659.     uint8_t type;
  1660. };
  1661.  
  1662. typedef struct plug_ident plug_ident_t;
  1663.  
  1664. #define class_init {NULL, NULL}
  1665.  
  1666. struct reiser4_plug {
  1667.     /* Plugin class. This will be used by plugin factory for initializing
  1668.        plugin. */
  1669.     plug_class_t cl;
  1670.  
  1671.     /* Plugin id. This will be used for looking for a plugin. */
  1672.     plug_ident_t id;
  1673.     
  1674. #ifndef ENABLE_MINIMAL
  1675.     /* Plugin label (name). */
  1676.     const char label[PLUG_MAX_LABEL];
  1677.     
  1678.     /* Short plugin description. */
  1679.     const char desc[PLUG_MAX_DESC];
  1680. #endif
  1681.  
  1682.         /* All possible plugin operations. */
  1683.     union {
  1684.         reiser4_key_ops_t *key_ops;
  1685.         reiser4_item_ops_t *item_ops;
  1686.         reiser4_node_ops_t *node_ops;
  1687.         reiser4_hash_ops_t *hash_ops;
  1688.         reiser4_fibre_ops_t *fibre_ops;
  1689.         reiser4_sdext_ops_t *sdext_ops;
  1690.         reiser4_object_ops_t *object_ops;
  1691.         reiser4_format_ops_t *format_ops;
  1692.  
  1693. #ifndef ENABLE_MINIMAL
  1694.         reiser4_oid_ops_t *oid_ops;
  1695.         reiser4_alloc_ops_t *alloc_ops;
  1696.         reiser4_policy_ops_t *policy_ops;
  1697.         reiser4_journal_ops_t *journal_ops;
  1698. #endif
  1699.     } o;
  1700. };
  1701.  
  1702. /* Macros for dirtying nodes place lie at. */
  1703. #define place_mkdirty(place) \
  1704.         ((place)->node->block->dirty = 1)
  1705.  
  1706. #define place_mkclean(place) \
  1707.         ((place)->node->block->dirty = 0)
  1708.  
  1709. #define place_isdirty(place) \
  1710.         ((place)->node->block->dirty)
  1711.  
  1712. struct flow_ops {
  1713.     /* Reads data from the tree. */
  1714.     int64_t (*read) (tree_entity_t *, trans_hint_t *);
  1715.  
  1716. #ifndef ENABLE_MINIMAL
  1717.     /* Writes data to tree. */
  1718.     int64_t (*write) (tree_entity_t *, trans_hint_t *);
  1719.  
  1720.     /* Truncates data from tree. */
  1721.     int64_t (*truncate) (tree_entity_t *, trans_hint_t *);
  1722.     
  1723.     /* Convert some particular place to another plugin. */
  1724.     errno_t (*convert) (tree_entity_t *, conv_hint_t *);
  1725. #endif
  1726. };
  1727.  
  1728. typedef struct flow_ops flow_ops_t;
  1729.  
  1730. struct tree_ops {
  1731.     /* Makes lookup in the tree in order to know where say stat data item of
  1732.        a file realy lies. It is used in all object plugins. */
  1733.     lookup_t (*lookup) (tree_entity_t *, lookup_hint_t *, 
  1734.                 lookup_bias_t, reiser4_place_t *);
  1735.  
  1736. #ifndef ENABLE_MINIMAL
  1737.     /* Collisions handler. It takes start place and looks for actual data in
  1738.        collided array. */
  1739.     lookup_t (*collision) (tree_entity_t *, reiser4_place_t *, 
  1740.                    coll_hint_t *);
  1741.     
  1742.     /* Inserts item/unit in the tree by calling tree_insert() function, used
  1743.        by all object plugins (dir, file, etc). */
  1744.     int64_t (*insert) (tree_entity_t *, reiser4_place_t *,
  1745.                trans_hint_t *, uint8_t);
  1746.  
  1747.     /* Removes item/unit from the tree. It is used in all object plugins for
  1748.        modification purposes. */
  1749.     errno_t (*remove) (tree_entity_t *, reiser4_place_t *, trans_hint_t *);
  1750.     
  1751.     /* Update the key in the place and the node itsef. */
  1752.     errno_t (*update_key) (tree_entity_t *, reiser4_place_t *, reiser4_key_t *);
  1753.  
  1754.     /* Get the safe link locality. */
  1755.     uint64_t (*slink_locality) (tree_entity_t *);
  1756.  
  1757.     /* increment/decriment the free block count in the format. */
  1758.     errno_t (*inc_free) (tree_entity_t *, count_t);
  1759.     errno_t (*dec_free) (tree_entity_t *, count_t);
  1760. #endif
  1761.     /* Returns the next item. */
  1762.     errno_t (*next_item) (tree_entity_t *, reiser4_place_t *, 
  1763.                   reiser4_place_t *);
  1764. };
  1765.  
  1766. typedef struct tree_ops tree_ops_t;
  1767.  
  1768. struct factory_ops {
  1769.     /* Finds plugin by its attributes (type and id). */
  1770.     reiser4_plug_t *(*ifind) (rid_t, rid_t);
  1771. };
  1772.  
  1773. typedef struct factory_ops factory_ops_t;
  1774.  
  1775. #ifdef ENABLE_SYMLINKS
  1776. struct object_ops {
  1777.     errno_t (*resolve) (tree_entity_t *, char *, 
  1778.                 reiser4_key_t *, reiser4_key_t *);
  1779. };
  1780.  
  1781. typedef struct object_ops object_ops_t;
  1782. #endif
  1783.  
  1784. struct pset_ops {
  1785.     /* Obtains the plugin from the profile by its profile index. */
  1786.     reiser4_plug_t *(*find) (rid_t, rid_t);
  1787. #ifndef ENABLE_MINIMAL
  1788.     void (*diff) (tree_entity_t *, reiser4_opset_t *);
  1789. #endif
  1790. };
  1791.  
  1792. typedef struct pset_ops pset_ops_t;
  1793.  
  1794. #ifndef ENABLE_MINIMAL
  1795. struct key_ops {
  1796.     char *(*print) (reiser4_key_t *, uint16_t);
  1797. };
  1798.  
  1799. typedef struct key_ops key_ops_t;
  1800.  
  1801. struct item_ops {
  1802.     /* Checks if items mergeable. */
  1803.     int (*mergeable) (reiser4_place_t *, reiser4_place_t *);
  1804. };
  1805.  
  1806. typedef struct item_ops item_ops_t;
  1807. #endif
  1808.  
  1809. /* This structure is passed to all plugins in initialization time and used for
  1810.    access libreiser4 factories. */
  1811. struct reiser4_core {
  1812.     flow_ops_t flow_ops;
  1813.     tree_ops_t tree_ops;
  1814.     factory_ops_t factory_ops;
  1815.     pset_ops_t pset_ops;
  1816.  
  1817. #ifdef ENABLE_SYMLINKS
  1818.     object_ops_t object_ops;
  1819. #endif
  1820.  
  1821. #ifndef ENABLE_MINIMAL
  1822.     key_ops_t key_ops;
  1823.     item_ops_t item_ops;
  1824. #endif
  1825. };
  1826.  
  1827. #define print_key(core, key)                                 \
  1828.     ((core)->key_ops.print((key), PO_DEFAULT))
  1829.  
  1830. #define print_inode(core, key)                               \
  1831.     ((core)->key_ops.print((key), PO_INODE))
  1832.  
  1833. #define ident_equal(ident1, ident2)                          \
  1834.     ((ident1)->type == (ident2)->type &&             \
  1835.      (ident1)->id == (ident2)->id)
  1836.  
  1837. #define plug_equal(plug1, plug2)                             \
  1838.         ident_equal(&((plug1)->id), &((plug2)->id))
  1839.  
  1840. /* Makes check is needed method implemengted */
  1841. #define plug_call(ops, method, ...) ({                       \
  1842.         aal_assert("Method \""#method"\" isn't implemented " \
  1843.                    "in "#ops"", ops->method != NULL);        \
  1844.         ops->method(__VA_ARGS__);                 \
  1845. })
  1846.  
  1847. typedef void (*register_builtin_t) (plug_init_t, plug_fini_t);
  1848.  
  1849. /* Macro for registering a plugin in plugin factory. It accepts two pointers to
  1850.    functions. The first one is pointer to plugin init function and second - to
  1851.    plugin finalization function. */
  1852. #define plug_register(n, i, f)                                 \
  1853.     plug_init_t __##n##_plug_init = i;               \
  1854.     plug_init_t __##n##_plug_fini = f
  1855.  
  1856. #endif
  1857.